حالا سوالاتی که من دارم:
چی شد که اینا واسه خودشون برند شدن و معروف شدن؟
از چ روش هایی برای این کارها استفاده کردن؟
از چ نوع تبلیغاتی برای این کار استفاده کردن؟
آیا ایمیل های تبلیغاتی فرستادن ؟
من میخوام اطلاعاتی در مورد برند سازی بدست بیارم و راه های تبلیغ ی سایت رو بدونم.
چطوری بازدید ی سایت رو بالا ببرم؟
الآن به این آدرس برید.
http://www.stonetown.ir/
این ی شهر مجازی تو صنعت سنگ هستش.
من میخوام این سایت رو به همه ی فعالان صنعت سنگ معرفی کنم.
از چ روش هایی برای این کار استفاده کنم؟
منتظر پیشنهاداتتون هستم
ممنون
ما را در سایت php مرکز کد های سایت دنبال میکنید
برچسب: نویسنده: استخدام کار بازدید: 177 تاريخ: شنبه 29 اسفند 1394 ساعت: 14:19
البته اگر نیازی دارید کوئری روی آرایه ها انجام بدید بهتره کلا یک جدول دیگه بهش اختصاص بدید و بصورت رابطه یک به چند با جدول مادر انجامش بدید
البته در دیتابیس هایی postgresql قابلیت ذخیره آرایه به شیوه هایی موجوده 
ولی در mysql موجود نیست
ما را در سایت php مرکز کد های سایت دنبال میکنید
برچسب: نویسنده: استخدام کار بازدید: 182 تاريخ: شنبه 29 اسفند 1394 ساعت: 14:19
بعد از کلی تحقیق بلخره یه مقاله از پروفسور Andrew T. Campbell پیدا کردم که توضح کاملی راجب Activity Lifecycle (باز و بسته شدن برنامه های اندروید) داده بود! اونم تو یک صفحه دره پیت و ساده 
شیوه درست صدا زدن Superclass ها در Activity:
کد:
// Called after onCreate has finished, use to restore UI state
@Override
public void onRestoreInstanceState(Bundle savedInstanceState)
{
super.onRestoreInstanceState(savedInstanceState); // Always call the superclass method at FIRST. // Restore UI state from the savedInstanceState.
// This bundle has also been passed to onCreate.
// Will only be called if the Activity has been
// killed by the system since it was last visible.
}
// Called before subsequent visible lifetimes for an activity process.
@Override
public void onRestart()
{
super.onRestart(); // Always call the superclass method at FIRST.
// Load changes knowing that the Activity has already
// been visible within this process.
}
// Called at the start of the visible lifetime.
@Override
public void onStart()
{
super.onStart(); // Always call the superclass method at FIRST.
// Apply any required UI change now that the Activity is visible.
}
// Called at the start of the active lifetime.
@Override
public void onResume()
{
// Resume any paused UI updates, threads, or processes required
// by the Activity but suspended when it was inactive.
super.onResume(); // Always call the superclass method at LAST.
}
// Called to save UI state changes at the end of the active lifecycle.
@Override
public void onSaveInstanceState(Bundle savedInstanceState)
{
// Save UI state changes to the savedInstanceState.
// This bundle will be passed to onCreate and
// onRestoreInstanceState if the process is
// killed and restarted by the run time.
super.onSaveInstanceState(savedInstanceState); // Always call the superclass method at LAST.
}
// Called at the end of the active lifetime.
@Override
public void onPause()
{
// Suspend UI updates, threads, or CPU intensive processes
// that don't need to be updated when the Activity isn't
// the active foreground Activity.
super.onPause(); // Always call the superclass method at LAST.
}
// Called at the end of the visible lifetime.
@Override
public void onStop()
{
super.onStop(); // Always call the superclass method at FIRST.
// Suspend remaining UI updates, threads, or processing
// that aren't required when the Activity isn't visible.
// Persist all edits or state changes
// as after this call the process is likely to be killed.
}
// Sometimes called at the end of the full lifetime.
@Override
public void onDestroy()
{
// Clean up any resources including ending threads,
// closing database connections etc.
super.onDestroy(); // Always call the superclass method at LAST.
}
عدم رعایت این اولویت ها باعث کندی، crash کردن، memory leak، ناهماهنگی در UI، باگهای DataSaving و امثالش میشه... پس حتماً رعایت کنید.
(که کندی و ناهماهنگی UI ش شامل حال من میشد)
منبع: پروفسور Andrew T. Campbell
http://cs.dartmouth.edu/~campbell/cs65/l...ure05.html
اطلاعات بیشتر:
http://grepcode.com/file/repository.grep...ivity.java
آدمی در عالم خاکی نمی آید به دست / عالمی دیگر بباید ساخت وز نو آدمی
php مرکز کد های سایت...ما را در سایت php مرکز کد های سایت دنبال میکنید
برچسب: نویسنده: استخدام کار بازدید: 186 تاريخ: شنبه 29 اسفند 1394 ساعت: 14:19
البته اگر نیازی دارید کوئری روی آرایه ها انجام بدید بهتره کلا یک جدول دیگه بهش اختصاص بدید و بصورت رابطه یک به چند با جدول مادر انجامش بدید
البته در دیتابیس هایی postgresql قابلیت ذخیره آرایه به شیوه هایی موجوده 
ولی در mysql موجود نیست
ما را در سایت php مرکز کد های سایت دنبال میکنید
برچسب: نویسنده: استخدام کار بازدید: 193 تاريخ: شنبه 29 اسفند 1394 ساعت: 9:41
بعد از کلی تحقیق بلخره یه مقاله از پروفسور Andrew T. Campbell پیدا کردم که توضح کاملی راجب Activity Lifecycle (باز و بسته شدن برنامه های اندروید) داده بود! اونم تو یک صفحه دره پیت و ساده 
شیوه درست صدا زدن Superclass ها در Activity:
کد:
// Called after onCreate has finished, use to restore UI state
@Override
public void onRestoreInstanceState(Bundle savedInstanceState)
{
super.onRestoreInstanceState(savedInstanceState); // Always call the superclass method at FIRST. // Restore UI state from the savedInstanceState.
// This bundle has also been passed to onCreate.
// Will only be called if the Activity has been
// killed by the system since it was last visible.
}
// Called before subsequent visible lifetimes for an activity process.
@Override
public void onRestart()
{
super.onRestart(); // Always call the superclass method at FIRST.
// Load changes knowing that the Activity has already
// been visible within this process.
}
// Called at the start of the visible lifetime.
@Override
public void onStart()
{
super.onStart(); // Always call the superclass method at FIRST.
// Apply any required UI change now that the Activity is visible.
}
// Called at the start of the active lifetime.
@Override
public void onResume()
{
// Resume any paused UI updates, threads, or processes required
// by the Activity but suspended when it was inactive.
super.onResume(); // Always call the superclass method at LAST.
}
// Called to save UI state changes at the end of the active lifecycle.
@Override
public void onSaveInstanceState(Bundle savedInstanceState)
{
// Save UI state changes to the savedInstanceState.
// This bundle will be passed to onCreate and
// onRestoreInstanceState if the process is
// killed and restarted by the run time.
super.onSaveInstanceState(savedInstanceState); // Always call the superclass method at LAST.
}
// Called at the end of the active lifetime.
@Override
public void onPause()
{
// Suspend UI updates, threads, or CPU intensive processes
// that don't need to be updated when the Activity isn't
// the active foreground Activity.
super.onPause(); // Always call the superclass method at LAST.
}
// Called at the end of the visible lifetime.
@Override
public void onStop()
{
super.onStop(); // Always call the superclass method at FIRST.
// Suspend remaining UI updates, threads, or processing
// that aren't required when the Activity isn't visible.
// Persist all edits or state changes
// as after this call the process is likely to be killed.
}
// Sometimes called at the end of the full lifetime.
@Override
public void onDestroy()
{
// Clean up any resources including ending threads,
// closing database connections etc.
super.onDestroy(); // Always call the superclass method at LAST.
}
عدم رعایت این اولویت ها باعث کندی، crash کردن، memory leak، ناهماهنگی در UI، باگهای DataSaving و امثالش میشه... پس حتماً رعایت کنید.
(که کندی و ناهماهنگی UI ش شامل حال من میشد)
منبع: پروفسور Andrew T. Campbell
http://cs.dartmouth.edu/~campbell/cs65/l...ure05.html
اطلاعات بیشتر:
http://grepcode.com/file/repository.grep...ivity.java
آدمی در عالم خاکی نمی آید به دست / عالمی دیگر بباید ساخت وز نو آدمی
php مرکز کد های سایت...ما را در سایت php مرکز کد های سایت دنبال میکنید
برچسب: نویسنده: استخدام کار بازدید: 147 تاريخ: شنبه 29 اسفند 1394 ساعت: 9:41
ما را در سایت php مرکز کد های سایت دنبال میکنید
برچسب: نویسنده: استخدام کار بازدید: 185 تاريخ: شنبه 29 اسفند 1394 ساعت: 9:41
حالا سوالاتی که من دارم:
چی شد که اینا واسه خودشون برند شدن و معروف شدن؟
از چ روش هایی برای این کارها استفاده کردن؟
از چ نوع تبلیغاتی برای این کار استفاده کردن؟
آیا ایمیل های تبلیغاتی فرستادن ؟
من میخوام اطلاعاتی در مورد برند سازی بدست بیارم و راه های تبلیغ ی سایت رو بدونم.
چطوری بازدید ی سایت رو بالا ببرم؟
الآن به این آدرس برید.
http://www.stonetown.ir/
این ی شهر مجازی تو صنعت سنگ هستش.
من میخوام این سایت رو به همه ی فعالان صنعت سنگ معرفی کنم.
از چ روش هایی برای این کار استفاده کنم؟
منتظر پیشنهاداتتون هستم
ممنون
ما را در سایت php مرکز کد های سایت دنبال میکنید
برچسب: نویسنده: استخدام کار بازدید: 176 تاريخ: شنبه 29 اسفند 1394 ساعت: 1:13
بالاخره PhpStorm در آخرین ورژنش که دیروز منتشر شد به صورت کاملا صحیح از زبان فارسی پشتیبانی می کنه و اون مشکل بهم ریختگی حروف هنگام ویرایش رو نداره .
فکر می کنم بهترین تغییری بود که می شد ایجاد کنن .
ما را در سایت php مرکز کد های سایت دنبال میکنید
برچسب: نویسنده: استخدام کار بازدید: 179 تاريخ: جمعه 28 اسفند 1394 ساعت: 21:32



ارسالها: 1
تاریخ عضویت: امروز
اعتبار: 0
تشکرها : 0
( 0 تشکر در 0 ارسال )
ارسال: #1 دو زبانه کردن با توجه بهIP در PHPسلام |
ما را در سایت php مرکز کد های سایت دنبال میکنید
برچسب: نویسنده: استخدام کار بازدید: 187 تاريخ: جمعه 28 اسفند 1394 ساعت: 21:32
الگوریتمش هم برای سایتهای معمولی زیاد مهم نیست، چون اولاً یکطرفند(به زبان ساده Decrypt نمیشن)، دوماً برای crack کردنشون روزها و ماهها وقت نیازه
می تونی از روش های آماده مثل SHA512, MD6, Tiger, Haval, Whirlpool و امثالش استفاده کنی + salt
آدمی در عالم خاکی نمی آید به دست / عالمی دیگر بباید ساخت وز نو آدمی
php مرکز کد های سایت...ما را در سایت php مرکز کد های سایت دنبال میکنید
برچسب: نویسنده: استخدام کار بازدید: 236 تاريخ: جمعه 28 اسفند 1394 ساعت: 8:27